home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-02-13 | 815 b | 29 lines | [TEXT/KAHL] |
- /* ===================================
-
- File: MyWindow.h
- Function: Header for this window
- History: 2/13/90 Original by Prototyper.
-
- ================================= */
-
-
- /* Initialize us so all our routines can be activated */
- extern void Init_MyWindow(void);
-
- /* Close our window */
- extern void Close_MyWindow(WindowPtr whichWindow, TEHandle *theInput);
-
- /* Open our window and draw everything */
- extern void Open_MyWindow(TEHandle *theInput);
-
- /* Update our window, someone uncovered a part of us */
- extern void UpDate_MyWindow(WindowPtr whichWindow);
-
- /* Handle action to our window, like controls */
- extern void Do_MyWindow(EventRecord *myEvent, TEHandle *theInput);
-
-
- /* Do window resizing, resize the scrollbars */
- extern void Resized_MyWindow(Rect *OldRect, WindowPtr whichWindow);
-
-